home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / pavt150.zip / CAPI.ZIP / MAKEFILE.GCC < prev    next >
Text File  |  1993-07-01  |  662b  |  30 lines

  1. #
  2. #   JAM(mbp) - The Joaquim-Andrew-Mats Message Base Proposal
  3. #
  4. #   C API
  5. #
  6. #   Written by Mats Wallin
  7. #
  8. #   ----------------------------------------------------------------------
  9. #
  10. #   makefile (JAMmb)
  11. #
  12. #   Make file for JAM(mbp) C API library and GCC for a Sparc
  13. #
  14. #   Copyright 1993 Joaquim Homrighausen, Andrew Milner, Mats Birch, and
  15. #   Mats Wallin. ALL RIGHTS RESERVED.
  16. #
  17. CC      = gcc
  18. CFLAGS  = -c -ansi
  19.  
  20. OBJS    = jamfetch.o jamfield.o jamhinfo.o jamlock.o\
  21.           jamlread.o jammbini.o jamscan.o  jamstore.o\
  22.           jamcrc32.o jamsys.o
  23.  
  24. .c.o:
  25.     $(CC) $(CFLAGS) $*.c
  26.  
  27. libjamcapi.a:   $(OBJS)
  28.     ar rcv $@ $?
  29.     ranlib $@
  30.